home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / applic / ntp / acts.zoo / sndptr.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-10-14  |  334 b   |  19 lines

  1. void sndptr()
  2. {
  3. #include "nbstime.h"
  4. #ifdef IBMPC
  5. #include <dos.h>
  6. /*
  7.         pulses strobe line on printer
  8.  
  9.     note -- only used for IBMPC version. if IBMPC is not
  10.     defined, this is a do - nothing
  11. */
  12. extern int lpadr;
  13. int j;
  14.         outportb(lpadr,1);
  15.         for(j=0; j<3; j++) ;
  16.         outportb(lpadr,0);
  17. #endif
  18. }
  19.